2973e8f39b2cb51d7dfaa6ffc43e9e91e600fb9d,plugin.idea/src/com/microsoft/alm/plugin/idea/common/ui/checkout/TfsCheckoutPageModel.java,TfsCheckoutPageModel,TfsCheckoutPageModel,#CheckoutModel#,29
Before Change
authenticationProvider = TfsAuthenticationProvider.getInstance();
// If we have authenticated before, just use that one
if (authenticationProvider.isAuthenticated()) {
final ServerContext authenticatedContext = ServerContextManager.getInstance().getAuthenticatedContext(
authenticationProvider.getAuthenticationInfo().getServerUri().toString(), false);
if (authenticatedContext != null) {
setServerNameInternal(authenticatedContext.getServerUri().toString());
LookupHelper.loadTfsContexts(this, this,
authenticationProvider, getRepositoryProvider(),
After Change
// If we have authenticated before, just use that one
if (authenticationProvider.isAuthenticated()) {
logger.info("TFS auth info already found so reusing that for loading repos");
final AuthenticationInfo info = authenticationProvider.getAuthenticationInfo();
setServerNameInternal(info.getServerUri());
LookupHelper.loadTfsContexts(this, this,
authenticationProvider, getRepositoryProvider(),